home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-11 | 1.5 KB | 91 lines | [TEXT/MPS ] |
- ;
- ; File: Retrace.a
- ;
- ; Copyright: © 1984-1994 by Apple Computer, Inc.
- ; All rights reserved.
- ;
- ; Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
- ;
- ; Bugs?: If you find a problem with this file, send the file and version
- ; information (from above) and the problem description to:
- ;
- ; Internet: apple.bugs@applelink.apple.com
- ; AppleLink: APPLE.BUGS
- ;
- ;
-
- IF &TYPE('__RETRACE__') = 'UNDEFINED' THEN
- __RETRACE__ SET 1
-
-
- IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
- include 'Types.a'
- ENDIF
- ; include 'ConditionalMacros.a' ;
-
- IF &TYPE('__OSUTILS__') = 'UNDEFINED' THEN
- include 'OSUtils.a'
- ENDIF
- ; include 'MixedMode.a' ;
- ; include 'Memory.a' ;
- VBLTask RECORD 0
- qLink ds.l 1
- qType ds.w 1
- vblAddr ds.l 1
- vblCount ds.w 1
- vblPhase ds.w 1
- sizeof EQU 14
- ENDR
-
- IF GENERATING68K THEN
- Macro
- _GetVBLQHdr
- dc.w $2EBC
- dc.w $0000
- dc.w $0160
- EndM
- ELSE
- IMPORT GetVBLQHdr
- ENDIF
-
- IF GENERATING68K THEN
- _SlotVInstall: OPWORD $A06F
- ELSE
- IMPORT SlotVInstall
- ENDIF
-
- IF GENERATING68K THEN
- _SlotVRemove: OPWORD $A070
- ELSE
- IMPORT SlotVRemove
- ENDIF
-
- IF GENERATING68K THEN
- _AttachVBL: OPWORD $A071
- ELSE
- IMPORT AttachVBL
- ENDIF
-
- IF GENERATING68K THEN
- _DoVBLTask: OPWORD $A072
- ELSE
- IMPORT DoVBLTask
- ENDIF
-
- IF GENERATING68K THEN
- _VInstall: OPWORD $A033
- ELSE
- IMPORT VInstall
- ENDIF
-
- IF GENERATING68K THEN
- _VRemove: OPWORD $A034
- ELSE
- IMPORT VRemove
- ENDIF
-
- ;
- ; Custom Glue for 68k.
- ;
- ENDIF ; __RETRACE__
-